home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2005 July / Macworld CD 17.05.iso / Data / Main.dxr / 00173_list .ls < prev    next >
Encoding:
Text File  |  2000-02-28  |  502 b   |  25 lines

  1. property meS
  2.  
  3. on new me
  4.   return me
  5. end
  6.  
  7. on beginSprite me
  8.   meS = me.spriteNum
  9. end
  10.  
  11. on exitFrame me
  12.   if rollOver(meS) then
  13.     if the mouseLine <> -1 then
  14.       if the textStyle of line the mouseLine of field "Product Names" = "plain" then
  15.         set the textStyle of field "Product Names" to "plain"
  16.         set the textStyle of line the mouseLine of field "Product Names" to "bold"
  17.       end if
  18.     end if
  19.   end if
  20. end
  21.  
  22. on mouseLeave me
  23.   set the textStyle of field "Product Names" to "plain"
  24. end
  25.